Reverses the contents of the specified string.
#Include <String.au3>
_StringReverse( $sString )
Parameters
$sString | String to reverse |
Return Value
Success: | Returns reversed string |
Failure: | Returns an empty string and sets @error = 1 |
@Error: | 0 = No error. |
1 = One of the parameters is invalid |
Remarks
None.
Related
None.
Example
#include <String.au3>
Msgbox(0,'',_StringReverse("esreveR"))
Exit